.abc {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #C2DFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: consolas;
}

.container {
    width: 1000px;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* responsive এর জন্য */
    gap: 20px;
}

.container .card {
    position: relative;
    cursor: pointer;
    flex: 1 1 300px; /* responsive width */
    max-width: 300px;
}

.container .card .face {
    width: 100%;
    height: 200px;
    transition: 0.5s;
}

.container .card .face.face1 {
    position: relative;
    background: #6960EC;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

.container .card:hover .face.face1 {
    background: #3F000F;
    transform: translateY(0);
}

.container .card .face.face1 .content {
    opacity: 0.2;
    transition: 0.5s;
}

.container .card:hover .face.face1 .content {
    opacity: 1;
}

.container .card .face.face1 .content img {
    max-width: 100px;
}

.container .card .face.face1 .content h3 {
    margin: 10px 0 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
}

.container .card .face.face2 {
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(-100px);
}

.container .card:hover .face.face2 {
    transform: translateY(0);
}

.container .card .face.face2 .content p {
    margin: 0;
    padding: 0;
}

.container .card .face.face2 .content a {
    margin: 15px 0 0;
    display: inline-block;
    text-decoration: none;
    font-weight: 900;
    color: #333;
    padding: 5px;
    border: 1px solid #333;
}

.container .card .face.face2 .content a:hover {
    background: #333;
    color: #fff;
}

/* 🔽 Responsive: মোবাইলে একটার নিচে একটা দেখাবে */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 30px;
    }

    .container .card {
        width: 90%;
        max-width: 300px;
    }
}
.container .card .face.face1 .content {
    opacity: 1; /* ঝাপসা নয়, সবসময় স্পষ্ট */
    transition: 0.5s;
}













/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}









  
/* ----------------------------------Jingo Kit - Provides Similar Services=----------------------------------------- */
 

  .container1 {
    max-width: 1200px;
    margin: auto;
    padding: 20px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
  }
  
  .footer {
    grid-column: span 2;
    text-align: center;
    font-size: 14px;
    color: #555;
   /* padding: 30px; */
    /* border-top: 1px solid #ccc; */
    margin-top: 40px;
  }
  


  @media (max-width: 768px) {
    .container {
      grid-template-columns: 1fr; /* মোবাইলে এক কলাম করে */
      padding: 20px;
    }
  
    .footer {
      grid-column: span 1; /* মোবাইলেও ফুটার যেন ঠিকমতো আসে */
    }
  }
  
  

/* General styles for better readability */
p {
    font-size: 16px;
    line-height: 1.6;
    color: #444; /* Dark grey for better readability */
    margin: 10px 0;
    font-family: 'Arial', sans-serif;
  }
  
  /* Part 1: Stylish service list */
  .services-text span {
    background: linear-gradient(90deg, #9900FF, #FF6633 ); /* Gradient background */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
  }
  
  /* Part 2: Service description */
  .service-details {
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #f39c12; /* Adds a left border for emphasis */
    border-radius: 5px;
  }
  
  .service-details strong {
    color: #e74c3c; /* Emphasize with red for strong text */
  }
  
  .service-details br {
    margin: 5px 0;
  }
  
  /* Part 3: Detailed service description */
  .service-description {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .service-description strong {
    color: #16a085; /* Green for strong text, indicating trust and growth */
  }
  
  .service-description em {
    color: #f39c12; /* Orange for emphasis */
  }
  
  /* Part 4: Service overview */
  .service-overview {
    background: linear-gradient(135deg, #3498db, #9b59b6); /* Blue and Purple gradient */
    padding: 20px;
    color: white;
    border-radius: 5px;
  }
  
  .service-overview a {
    color: #f39c12;
    font-weight: bold;
    text-decoration: none;
  }
  
  .service-overview a:hover {
    text-decoration: underline;
  }
  
  /* Part 5: More links */
  .explore-links {
    font-size: 16px;
    color: #555;
  }
  
  .explore-links a {
    color: #3498db; /* Blue for links */
    text-decoration: none;
  }
  
  .explore-links a:hover {
    text-decoration: underline;
    color: #e74c3c; /* Red on hover */
  }
  
  /* Adding hover effects and subtle animation */
  .card {
    transition: all 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .card h3,
  .card h4 {
    color: #2c3e50; /* Darker heading color */
  }
  

  
  /* Part 1 Card Styling */
  /* .card {
    background: #ffffff;
    padding: 25px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
  } */
  
  /* Part 1 Text Styling */
  .services-text {
    font-size: 18px;
    font-weight: 500;
    color: #34495e;
    line-height: 1.8;
    word-spacing: 4px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #e3f2fd, #ffffff);
    padding: 15px;
    border-left: 4px solid #3498db;
    border-radius: 10px;
    margin-top: 10px;
  }
  
  /* Header Styling */
  .card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
  }
  
  .services-text {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 2;
    padding: 15px;
    background: #f4f9ff;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    word-spacing: 5px;
    letter-spacing: 0.5px;
  }
  
  /* Highlight Each Word */
  .highlight {
    font-weight: 700;
    color: #1a73e8;
    padding: 4px 8px;
    background-color: #e8f0fe;
    border-radius: 6px;
    transition: 0.3s;
  }
  
  .highlight:hover {
    background-color: #d2e3fc;
    color: #0b5394;
  }
  
  
  
  
  
  
  
  
/* <!-- ------------------------------------------book cart------------------------- --> */

.book-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .book-card {
    background: linear-gradient(to bottom right, #ffffff, #f3f6f9);
    border-radius: 14px;
    padding: 20px;
    width: 250px;
    height: 430px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    opacity: 0;
  }
  
  /* Hover effect */
  .book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  /* Cursor changes to hand */
  .book-card:hover {
    cursor: pointer;
  }
  
  .image-box {
    position: relative;
  }
  
  .image-box img {
    width: 100%;
    height: 260px; /* আরও লম্বা করা হয়েছে */
    object-fit: cover;
    border-radius: 8px;
  }
  
  .image-box .author {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
  }
  
  .book-card .book-title {
    font-size: 1.15rem;
    font-weight: bold;
    margin-top: 20px;
    color: #264653;
  }
  
  /* === Animation Section === */
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Apply animation to specific cards */
  .animate-left {
    animation: fadeInLeft 1s ease forwards;
    animation-delay: 0.3s;
  }
  
  .animate-top {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
  }
  
  .animate-right {
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.9s;
  }
  .book-section-wrapper {
    padding: 50px 20px;
    background: #f0f2f5;
    text-align: center;
  }
  
  .section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .section-heading span {
    color: #0077cc;
  }
  
  
  /* imge size----------------- */
  
  .book-section-wrapper {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .section-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .section-heading span {
    color: #0077cc;
  }
  
  .book-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .book-card {
    width: 250px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .book-card:hover {
    transform: translateY(-10px);
  }
  
  .image-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
  }
  
  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
  }
  
  .book-title {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
  }
  
  
  /* ------------------------------------card end-------------------------- */
  
  
  